home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 May / PC Answers CD-ROM 7 (Future Publishing) (May 1995).iso / vbits / slides / robinson / readme.txt < prev    next >
Encoding:
Text File  |  1994-12-04  |  1.6 KB  |  61 lines

  1. Debugging Your Visual Basic Applications
  2. Janet Robinson
  3. Microsoft Corporation
  4.  
  5. Talk and White Paper:
  6.  
  7. VBDEBUG.DOC
  8. White paper discussing debugging techniques for Visual Basic applications.
  9.  
  10. LONDEBUG.PPT
  11. PowerPoint 4.0 Presentation: Debugging Your VB Application
  12.  
  13. Demo Code:
  14. DEBUG.ZIP
  15. To unzip, copy debug.zip a new directoy and from a DOS prompt, type:
  16. PKUNZIP -D DEBUG.ZIP
  17.  
  18. \KBNAMCONV.TXT
  19. Naming conventions for Visual Basic programmers
  20.  
  21. \DEBUG\ALIAS.MAK
  22. using Declares from Help file versus creating specialized
  23. Aliases for the different ways you'll be using the DLL procedure
  24.  
  25. \DEBUG\FOCUS.MAK
  26. two text boxes competing for focus
  27.  
  28. \DEBUG\NODIM.MAK
  29. drag and drop from a multi-select list box
  30. file/dir listboxes
  31.  
  32. \DEBUG\PRIME.MAK
  33. lists prime numbers from 3 to 999
  34.  
  35. \DEBUG\STACK.MAK
  36. Celcius to Fahrenheit conversion, shows event cascading resulting
  37. in stack overflow
  38.  
  39. \DEBUG\TAGS.MAK
  40. Shows trying to set the tag of a form from another form and use
  41. in form_load. Can't do it because referencing the tag loads the
  42. form before setting the property.
  43.  
  44. \DEBUG\VARIANT.MAK
  45. can pass any data type to a procedure that accepts Variant -- Visual
  46. Basic doesn't do type checking for you.
  47.  
  48. \PASSARRY\PASSARRY.MAK
  49. how to format an Excel array with information to pass to a
  50. 2D range in Excel such as:
  51. ={"","Q1","Q2";"1990",200,1200;"1991",400,1400;"1992",600,1600}
  52.  
  53. \FINDXL\FINDXL.MAK
  54. Finds hidden instances of Excel using OLE automation so they can 
  55. be ended.
  56.  
  57. \FINDXL\HIDEXL.MAK
  58. Starts up a new instance of Excel, making it visible.
  59. Hides the new instance of Excel... now you can text FINDXL.MAK
  60.  
  61.